Shoreline Transformational Adaptation: Forward Looking Nature-based Climate Resilience¶

Our proposed framework recognizes the fundamental need for innovation and entrepreneurship to create the next generation of nature-inspired innovative coastal protection systems provided by the RISE Rural and Urban Coastal Community Resilience Challenge projects. To support this effort, the Mason Flood Hazards Research Lab, the Center for Ocean-Land-Atmosphere Studies and the Business for a Better World Center will: 1) develop engineering and scientific validation of the RISE innovative solutions providing the foundation for widespread implementation for coastal protection at scale; 2) provide support for a forwardlooking design strategy ensuring that the proposed alternatives are resilient to extreme events and future climate conditions; and 3) provide support to translate pilot studies to a greater market and communities and to mitigate barriers related to social acceptance and adoption.


Project Objectives¶

  1. Evaluate the performance of innovative types of nature-based solutions based on field-scale prototypes and environmental measurements and enhance the current understanding of how boat wakes and wind waves are attenuated by these interventions.

  2. Determine how these nature-based solutions help address shoreline erosion under a range of conditions including high-frequency events and extreme events.

  3. Evaluate the performance of innovative nature-based solutions for shoreline protection under a range of future climate conditions.

In [1]:
import warnings;warnings.filterwarnings("ignore")
import pathlib as pl;            import numpy as np
import netCDF4 as nc4;           import pandas as pd
import matplotlib.pyplot as plt; import xarray as xr
import json;                     import requests
import plotly.graph_objs as go;  import folium
import geopandas as gpd;
from random import randint
from chart_studio import plotly
from plotly.offline import plot,iplot, init_notebook_mode
from shapely import Polygon,Point,LineString
from rosely import WindRose
Initialize¶
In [3]:
root = pl.Path('/Users/tmiesse/work/FHRL/seagrant/field')

Task 1: Evaluation of the performance of innovative types of nature-based solutions based on field-scale prototypes and environmental measurements¶


Field sites¶

Canal¶

In [4]:
m         
Out[4]:
Transect 1 - East Bank: No Wave Data¶
Transect 1 - East Bank: Currents (Change to real adcp in canal)¶
In [5]:
fig.update_layout(
    paper_bgcolor='rgba(0,0,0,0)',
    plot_bgcolor='rgba(0,0,0,0)',
    margin=dict(l=1, r=1, t=1, b=1),
    height=400,width=450,legend=dict(title='Current [m/s]'))
#fig
Transect 2 - East Bank: Waves¶
In [6]:
fig.show()
Transect 3 - West Bank: Waves¶
In [7]:
fig.show()
Transect 4 - West Bank: Waves (Missing ODU RBRs 201398,211572)¶
In [8]:
fig.show()
Transect 5 - West Bank: Waves¶
In [9]:
fig.show()
Transect 6 - North Bank: Waves¶
In [10]:
fig.show()
Canal - All sensors¶
In [11]:
fig.show()

Marsh¶

In [12]:
folium.LayerControl().add_to(m)
m         
Out[12]:
Transect 1 - Rock Sill: Waves¶
In [13]:
fig.show()
Transect 2 - Marsh Sill Gap: Waves¶
In [14]:
fig.show()
Transect 2 - Marsh Sill Gap: Currents¶
In [15]:
fig.update_layout(
    paper_bgcolor='rgba(0,0,0,0)',
    plot_bgcolor='rgba(0,0,0,0)',
    margin=dict(l=1, r=1, t=1, b=1),
    height=400,width=450,legend=dict(title='Current [m/s]'))
#fig
Transect 3 - Oyster Sill: Waves¶
In [16]:
fig.update_layout(
    yaxis_title='Hs [m]',
    width=700,
    height=200,
    margin=dict(l=10, r=10, t=10, b=10),
    font=dict(family='Times New Roman'))
fig.show()
Transect 4 - New Marsh/oyster¶
In [17]:
fig.update_layout(
    yaxis_title='Hs [m]',
    width=700,
    height=200,
    margin=dict(l=10, r=10, t=10, b=10),
    font=dict(family='Times New Roman'))
fig.show()
Marsh Site - All transects¶
In [18]:
fig.show()

Atmospheric Pressure¶

Atmoshperic Pressure Comparison¶

In [19]:
fig.show()

Acknowledgments¶

This jupyter notebook was prepared by Celso Ferreira, Andre de Lima and Tyler Miesse using Federal funds under award [NOAA Award/Grant #72155Y-712684], Virginia Sea Grant College Program Project [R/72155Y], from the National Oceanic and Atmospheric Administration's (NOAA) National Sea Grant College Program, U.S. Department. of Commerce. The statements, findings, conclusions, and recommendations are those of the author(s) and do not necessarily reflect the views of Virginia Sea Grant, NOAA, or the U.S. Department of Commerce.

In [ ]: